home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / lxml / html / ElementSoup.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  554b  |  15 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. '''Legacy interface to the BeautifulSoup HTML parser.
  5. '''
  6. __all__ = [
  7.     'parse',
  8.     'convert_tree']
  9. from soupparser import convert_tree, parse as _parse
  10.  
  11. def parse(file, beautifulsoup = None, makeelement = None):
  12.     root = _parse(file, beautifulsoup = beautifulsoup, makeelement = makeelement)
  13.     return root.getroot()
  14.  
  15.